home *** CD-ROM | disk | FTP | other *** search
/ The Canadian & World Encyclopedia 1998 / The Canadian & World Encyclopedia 1998 - Disc 2.iso / mac / prime_CD / pb / PROFILE.DIR / 00007_Script_#overview pause-play < prev    next >
Text File  |  1997-07-29  |  547b  |  24 lines

  1. global over_paused
  2. on mousedown
  3.   puppetsprite the clickon, true
  4.   if the movierate of sprite 3 = 0 then
  5.     set the castnum of sprite the clickon = cast "over pause"
  6.     set the movierate of sprite 3 = 1
  7.     set over_paused = 0
  8.   else
  9.     set the castnum of sprite the clickon = cast "over play"
  10.     set the movierate of sprite 3 = 0
  11.     set over_paused = 1
  12.   end if
  13.   updatestage
  14. end
  15.  
  16. on mouseup
  17. end
  18.  
  19. on idle
  20.   if over_paused = 1 then dontpassevent
  21.   if the movierate of sprite 3 = 1 then set over_paused = 0
  22.   
  23.   pass
  24. end